home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / setgroups.c,v < prev    next >
Text File  |  1992-03-27  |  2KB  |  95 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.31.56;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     92.03.27.19.07.00;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * setgroups.c --
  32.  *
  33.  *    Procedure to map from Unix setgroups system call to Sprite.
  34.  *
  35.  * Copyright 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: setgroups.c,v 1.2 86/10/14 14:33:36 nelson Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "proc.h"
  45.  
  46. #include "compatInt.h"
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * setgroups --
  53.  *
  54.  *    Procedure to map from Unix setgroups system call to 
  55.  *    Sprite Proc_SetGroupIDs.
  56.  *
  57.  * Results:
  58.  *      UNIX_SUCCESS    - the call was successful.
  59.  *      UNIX_ERROR      - the call was not successful.
  60.  *                        The actual error code stored in errno.
  61.  *
  62.  * Side effects:
  63.  *    None.
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. int
  69. setgroups(ngroups, gidset)
  70.     int ngroups;
  71.     int *gidset;
  72. {
  73.     ReturnStatus status;    /* result returned by Proc_SetGroupIDs */
  74.  
  75.     status = Proc_SetGroupIDs(ngroups, gidset);
  76.     if (status != SUCCESS) {
  77.     errno = Compat_MapCode(status);
  78.     return(UNIX_ERROR);
  79.     } else {
  80.     return(UNIX_SUCCESS);
  81.     }
  82. }
  83. @
  84.  
  85.  
  86. 1.1.1.1
  87. log
  88. @Initial branch for Sprite server.
  89. @
  90. text
  91. @d11 1
  92. a11 1
  93. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/setgroups.c,v 1.1 88/06/19 14:31:56 ouster Exp $ SPRITE (Berkeley)";
  94. @
  95.